2008-08-04 Björn Lindqvist <bjourne@gmail.com>
Bug 534979 – GtkImageMenuItem is a bin but has two children.
* gtk/gtkimagemenuitem.c (gtk_image_menu_item_forall): Do not
include the image widget when iterating over non-internal
children. Patch by rainwoodman.
svn path=/trunk/; revision=20985
+2008-08-04 Björn Lindqvist <bjourne@gmail.com>
+
+ Bug 534979 – GtkImageMenuItem is a bin but has two children.
+
+ * gtk/gtkimagemenuitem.c (gtk_image_menu_item_forall): Do not
+ include the image widget when iterating over non-internal
+ children. Patch by rainwoodman.
+
2008-08-04 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
callback,
callback_data);
- if (image_menu_item->image)
+ if (include_internals && image_menu_item->image)
(* callback) (image_menu_item->image, callback_data);
}